home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr02
/
exadb30.zip
/
ADBOOK.ZIP
/
INSTALL.BAT
< prev
Wrap
DOS Batch File
|
1992-08-07
|
4KB
|
105 lines
echo off
cls
echo ═══════════════════════════════════════════════════════════════════════════════
echo ««« Executive Address Book »»»
echo ───────────────────────────────────────────────────────────────────────────────
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo
echo Welcome to Executive Address Book
echo
echo You may install the program with or without Demonstration Files.
echo
echo
!!! WARNING !!!
echo
echo Demonstration Files will OVERWRITE previously entered Name and
echo
echo Address data. Install with Demonstration Files if this is your
echo
echo first installation. Install without Demonstration Files if the
echo
echo Executive Address Book was previously installed.
echo
echo
echo Press any key to continue.
pause > nul
cls
echo ═══════════════════════════════════════════════════════════════════════════════
echo ««« Executive Address Book Installation »»»
echo ───────────────────────────────────────────────────────────────────────────────
echo ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
echo
:menu
echo ╔════════════════════════════════════════════════════╗
echo ║ ║
echo ║ ║
echo ║ Choose: ║
echo ║ ══════ ║
echo ║ ║
echo ║ 1. Install with Demonstration Files. ║
echo ║ ║
echo ║ 2. Install without Demonstration Files (update). ║
echo ║ ║
echo ║ E. Exit without installing any Files. ║
echo ║ ║
echo ║ ║
echo ║ ║
echo ╚════════════════════════════════════════════════════╝
echo
erlevel " Your selection: (1/2/E). " 12E
IF ERRORLEVEL 3 GOTO THIRD
IF ERRORLEVEL 2 GOTO SECOND
IF ERRORLEVEL 1 GOTO FIRST
:FIRST
cls
echo Thank you for selecting Executive Address Book.
echo It will now be installed with Demonstration Files.
echo
echo off
DEL adbook.exe
ADC1
del ADC1.EXE
ADC2
del ADC2.EXE
ADC
del ADC.EXE
cls
echo Executive Address Book installation complete.
echo To start Executive Address Book, type EX from the DOS prompt.
pause
goto exit
:SECOND
cls
echo Thank you for selecting Executive Address Book.
echo It will now be installed without Demonstration Files.
echo
echo off
DEL adbook.exe
DEL state.dbf
DEL state.ntx
DEL alpha.dbf
DEL alpha.ntx
DEL country.dbf
DEL country.ntx
DEL printer.dbf
DEL ex.exe
DEL ADC2.EXE
ADC1
DEL ADC1.EXE
ADC
DEL ADC.EXE
cls
echo Executive Address Book update installation complete.
echo To start Executive Address Book, type EX from the DOS prompt.
pause
goto exit
:THIRD
cls
echo
echo
echo Install program will exit to DOS !!!
pause
:exit